home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming All in One / 3D Game Programming All in One Disc.iso / 3D2E / RESOURCES / CH20 / remapDlg.gui < prev    next >
Text File  |  2005-11-23  |  1KB  |  47 lines

  1. //--- OBJECT WRITE BEGIN ---
  2. new GuiControl(RemapDlg) {
  3.    profile = "GuiDialogProfile";
  4.    horizSizing = "right";
  5.    vertSizing = "bottom";
  6.    position = "0 0";
  7.    extent = "640 480";
  8.    minExtent = "8 8";
  9.    visible = "1";
  10.    helpTag = "0";
  11.  
  12.    new GuiControl(OptRemapDlg) {
  13.       profile = "GuiWindowProfile";
  14.       horizSizing = "center";
  15.       vertSizing = "center";
  16.       position = "213 213";
  17.       extent = "243 64";
  18.       minExtent = "8 8";
  19.       visible = "1";
  20.       helpTag = "0";
  21.  
  22.       new GuiTextCtrl(OptRemapText) {
  23.          profile = "GuiCenterTextProfile";
  24.          horizSizing = "right";
  25.          vertSizing = "bottom";
  26.          position = "2 21";
  27.          extent = "99 20";
  28.          minExtent = "8 8";
  29.          visible = "1";
  30.          helpTag = "0";
  31.          text = "Re-bind control...";
  32.          maxLength = "255";
  33.       };
  34.         new GuiInputCtrl(OptRemapInputCtrl) {
  35.             profile = "GuiInputCtrlProfile";
  36.             horizSizing = "center";
  37.             vertSizing = "bottom";
  38.             position = "0 0";
  39.             extent = "64 64";
  40.             minExtent = "8 8";
  41.             visible = "1";
  42.             helpTag = "0";
  43.         };
  44.    };
  45. };
  46. //--- OBJECT WRITE END ---
  47.